DevJourney

Python/VIT/sem-1/ex-07/8. Digit Counter/while.py

n = int(input("Enter a number: "))
dC = 0

while n > 0:
    dC += 1
    n //= 10

print("Digit Count:",dC)
View on GitHub